Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Compiles JavaScript written using ES6 classes to use ES5-compatible function syntax. For example, this:
class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
get name() {
return this.firstName + ' ' + this.lastName;
}
toString() {
return this.name;
}
}
compiles to this:
var Person = function() {
function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
Object.defineProperty(Person.prototype, 'name', {
get: function() {
return this.firstName + ' ' + this.lastName;
}
});
Person.prototype.toString = function() {
return this.name;
};
return Person;
}();
For more information about the proposed syntax, see the wiki page on classes.
$ npm install es6-class
$ node
> var compile = require('es6-class').compile;
Without arguments:
> compile('class Foo {}');
'var Foo = (function() {\n function Foo() {}\n return Foo;\n})();'
Browserify support is built in.
$ npm install es6-class # install local dependency
$ browserify -t es6-class $file
First, install the development dependencies:
$ npm install
Then, try running the tests:
$ npm test
To run specific example files:
$ node test/runner test/examples/my_example.js test/examples/other_example.js
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Any contributors to the master es6-class repository must sign the Individual Contributor License Agreement (CLA). It's a short form that covers our bases and makes sure you're eligible to contribute.
When you have a change you'd like to see in the master repository, send a pull request. Before we merge your request, we'll make sure you're in the list of people who have signed a CLA.
FAQs
ES6 classes compiled to ES5.
The npm package es6-class receives a total of 53 weekly downloads. As such, es6-class popularity was classified as not popular.
We found that es6-class demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.